home *** CD-ROM | disk | FTP | other *** search
/ Introducing the New Way to Shop From Home / Introducing the New Way to Shop From Home (Iceland Foods) (2003).iso / pc / MacStepbyStep.dxr / Internal_400.ls < prev    next >
Encoding:
Text File  |  2003-01-01  |  517 b   |  35 lines

  1. on startMovie
  2.   global MacOn
  3.   if MacOn = 1 then
  4.     nothing()
  5.   else
  6.     set the exitLock to 1
  7.     startQuitMsg()
  8.     set the keyDownScript to "myNoEscape"
  9.   end if
  10.   set the keyDownScript to "myNoEscape"
  11. end
  12.  
  13. on quitMsg
  14.   go(1, "closing")
  15. end
  16.  
  17. on myNoEscape
  18.   global gList1Prod, gList2Prod, gList3Prod
  19.   if the keyCode = 53 then
  20.     go(1, "closing")
  21.   end if
  22.   if the keyCode = 36 then
  23.     nothing()
  24.   end if
  25. end
  26.  
  27. on stopMovie
  28.   global MacOn
  29.   if MacOn = 1 then
  30.     nothing()
  31.   else
  32.     closeQuitMsg()
  33.   end if
  34. end
  35.